Syntax |
SetIconProperty(@" IconTitle", #streamMode, value) |
Type |
Icon property |
Description |
This property controls the way a linked Flash movie is streamed into memory. The streamMode property can have these values:
![](/file/23250/CHIP Turkiye Ağustos 2000 CD2.iso/prog/deprem/Xtras/FlashAsset/Help/html/images/tri.gif) |
#frame streams a portion of the movie with each step event while the sprite is in the Presentation window. The step event timing is controlled by GlobalTempo . |
![](/file/23250/CHIP Turkiye Ağustos 2000 CD2.iso/prog/deprem/Xtras/FlashAsset/Help/html/images/tri.gif) |
#idle streams a portion of the movie each time an idle event is generated, or at least once per step event while the sprite is in the Presentation window. |
![](/file/23250/CHIP Turkiye Ağustos 2000 CD2.iso/prog/deprem/Xtras/FlashAsset/Help/html/images/tri.gif) |
#manual streams a portion of the movie into memory only when the stream method is issued for that icon. |
You can get and set the value of the streamMode property. The default setting is #frame . |
Example |
This statement sets the Flash sprite icon streamMode property to #manual .
SetIconProperty(@"Flash Icon", #streamMode, #manual)
|